Removes an entry from the cache.
public override Remove<>(
string ,
string
)
'Declaration
Public Overloads Overrides Function Remove(Of )( _
ByVal As String, _
ByVal As String _
) As
'Usage
Dim instance As FileCache
Dim key As String
Dim regionName As String
Dim value As
value = instance.Remove(Of T)(key, regionName)
@Override
public <T> T remove(String key, Class<?> classOfT, String regionName)
public:
Removegeneric<typename >
(
String^ ,
String^
) override
Parameters
- key
- Unique identifier of the cache item.
- regionName
- Optional name of a region in cache.
Type Parameters
- T
Return Value
The value of the item removed from the cache if found, otherwise; null.